home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-07-06 | 538 b | 35 lines | [TEXT/PJMM] |
- unit Globals;
-
- { Created June 29, 1989, to organize global variables }
-
- { Next four lines handle Debug, Names, Overflow and Range }
- { checking options in compiler. }
-
- {$D+}
- {$N+}
- {$V+}
- {$R+}
-
- interface
-
- const
- NULL = chr(0);
- TAB = chr(9);
- ENDLINE = chr(13);
- SPACE = chr(32);
-
- type
- MyByte = byte;
- OneString = STR255;
- OneStringPtr = ^OneString;
- OneStringHdl = ^OneStringPtr;
-
- var
- FileError: OSErr;
- VRefNum, CurrentResFile, ErrorCode: integer;
- VolName: STR255;
- ErrorFlag: boolean;
-
- implementation
-
- end. { Globals unit }